home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi 2.0 - Programmer's Utilities Power Pack
/
Delphi 2.0 Programmer's Utilities Power Pack.iso
/
a_to_d
/
ccs16
/
csfpcode.pas
< prev
next >
Wrap
Pascal/Delphi Source File
|
1996-09-15
|
570b
|
34 lines
unit CSFPCode;
interface
uses
SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
Forms, Dialogs, StdCtrls;
type
TCodeForm = class(TForm)
ComboBox1: TComboBox;
ComboBox2: TComboBox;
ComboBox3: TComboBox;
ComboBox4: TComboBox;
ComboBox5: TComboBox;
ComboBox6: TComboBox;
ComboBox7: TComboBox;
ComboBox8: TComboBox;
Label1: TLabel;
private
{ Private declarations }
public
{ Public declarations }
end;
var
CodeForm: TCodeForm;
implementation
{$R *.DFM}
end.